
/*主要CSS*/
.drag{ 
    position: relative;
    background-color: #ebeaf5;
    width: 538px;
    height: 44px;
    line-height: 44px;
    text-align: center;
	margin:0 auto;
}
.drag .handler{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 80px;
    height: 42px;
    border: 1px solid #ccc;
    cursor: move;
    border-radius:3px;
}
.handler_bg{
    background: #fff ;
}
.handler_ok_bg{
    background: #fff ;
}
.drag .drag_bg{
    background-color: #113281;
    height: 44px;
    width: 0px;
}
.drag .drag_text{
    position: absolute;
    top: 0px;
    width: 460px;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    -o-user-select:none;
    -ms-user-select:none; 
    color: #113281;
    text-align: center;
}

.drag_forgot{
    position: relative;
    background-color: #ebeaf5;
    width: 538px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    margin:20px auto;
}
.drag_forgot .handler_forgot{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 80px;
    height: 42px;
    border: 1px solid #ccc;
    cursor: move;
    border-radius:5px;
}
.handler_bg_forgot{
    background: #fff ;
}
.handler_ok_bg_forgot{
    background: #fff ;
}
.drag_forgot .drag_bg_forgot{
    background-color: #113281;
    height: 44px;
    width: 0px;
}
.drag_forgot .drag_text_forgot{
    position: absolute;
    top: 0px;
    width: 460px;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    -o-user-select:none;
    -ms-user-select:none;
    color: #113281;
    text-align: center;
}

.drag_tip{
    background: -webkit-gradient(linear,left top,right top,color-stop(0,#113281),color-stop(.4,#113281),color-stop(.5,#ffffff),color-stop(.6,#113281),color-stop(1,#113281));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: slidetounlock 3s infinite;
    width:538px;
}